Checkbox是一個可複選的按鈕元件,有非常多的用法,常見的像是設定是否開啟功能、多選、記住密碼等等,今天就利用checkbox來做一個很常見的確認鍵
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="316dp"
android:text="我不是機器人"
android:textSize="20sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.437"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="148dp"
android:layout_marginBottom="284dp"
android:text="確定"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
public class MainActivity extends AppCompatActivity {
private CheckBox checkBox;
private Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
checkBox = findViewById(R.id.checkBox);
button = findViewById(R.id.button);
button.setEnabled(false);
checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
if(checkBox.isChecked()){
button.setEnabled(true);
}
else {
button.setEnabled(false);
}
}
});
}
}
結果如下
同樣的用法也有像是同意以上協議等等的,而也可以利用checkbox做像是問卷、表單等等的作法,活用Checkbox可以出很多常見的東西,今天的介紹就到這邊了,謝謝大家